integer
Constructors
Functions
Finds the maximum of this integer and the given big integer value.
Finds the maximum of this integer and the given decimal value.
Finds the maximum of this integer and the given value.
Finds the minimum of this integer and the given big integer value.
Finds the minimum of this integer and the given decimal value.
Finds the minimum of this integer and the given value.
Raises this integer to the power of the given exponent. Can be used in a database at-expression.
The exponent cannot be negative.
Error on overflow, if the result is out of integer or integer range.
Beware that the result of integer.pow() is limited to the 64-bit signed integer range, so the operation like (2).pow(64) will overflow - use big_integer.pow() to get a big_integer result, e.g. (2).to_big_integer().pow(64).
If the exponent is 0, the result is always 1; if the exponent is 1, the result is the original value.
Converts this integer to a big integer.
Converts this integer to a decimal.